home *** CD-ROM | disk | FTP | other *** search
- /* D:\PROGRAMS\CPP\NOD1.H 8/24/1991 12:34
-
- This symbol header goes with
- NODEE and NODCL
-
- */
-
- #ifndef __NOD1_H
- #define __NOD1_H
-
- #define MYVERSION "v1.1"
- #define HELPFILE "nodee.hlp"
- #define PRIVATEINI "nodee.ini"
- #define MAXFULLFILE 12
-
- #define IDM_OPT1 1
- #define IDM_OPT1A 3
- #define IDM_OPT1B 4
- #define IDM_OPT1C 7
- #define IDM_H1 2
- #define IDM_H1A 5
- #define IDM_H1B 6
- #define IDM_H1C 9
-
- #define MYCW_GOBUTTON 201
- #define MYCW_FIRSTLINE 202
- #define MYCW_FILELIST 203
- #define MYCW_DIRLIST 204
- #define MYCW_ICKBUTTON 205
-
- #define MYCW_DIRFIELD 900
-
- /* Strings defined in the resource
- Since these are loaded in groups of
- 16, it makes since to give them
- hexadecimal numbers. */
-
- #define IDS_CAPTION 0x00
- #define IDS_APPNAME 0x01
-
- #define IDS_ERRORDEBUG 0x10
-
- /* These are the dimensions of all the child windows */
-
- #define CXMYWINDOW 32*cxChar+2*GetSystemMetrics(SM_CXVSCROLL)
- #define CYMYWINDOW 23*cyChar
-
- #define XDBOX 24*cxChar
- #define YDBOX cyChar*3/2
- #define CXDBOX (strlen(text)+2)*cxChar
- #define CYDBOX cyChar*7/4
-
- #define XGOBUTTON 19*cxChar
- #define YGOBUTTON cyChar*1
- #define CXGOBUTTON (strlen(text)+3)*cxChar
- #define CYGOBUTTON cyChar*2
-
- #define XFILETAG 1*cxChar
- #define YFILETAG 0*cyChar
-
- #define XFILEFIELD 2*cxChar
- #define YFILEFIELD cyChar*3/2
- #define CXFILEFIELD 15*cxChar
- #define CYFILEFIELD cyChar*7/4
-
- #define XDIRTAG 1*cxChar
- #define YDIRTAG cyChar*6/2
-
- #define WIDTHDIRFIELD 30
- #define XDIRFIELD 2*cxChar
- #define YDIRFIELD cyChar*9/2
- #define CXDIRFIELD 31*cxChar
- #define CYDIRFIELD cyChar*7/4
-
- #define XFILELIST 2*cxChar
- #define YFILELIST 7*cyChar
- #define CXFILELIST 13*cxChar+GetSystemMetrics(SM_CXVSCROLL)
- #define CYFILELIST 12*cyChar
-
- #define XDIRLIST 17*cxChar+GetSystemMetrics(SM_CXVSCROLL)
- #define YDIRLIST 7*cyChar
- #define CXDIRLIST 13*cxChar+GetSystemMetrics(SM_CXVSCROLL)
- #define CYDIRLIST 12*cyChar
-
-
- #endif